home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 July / Chip Temmuz 2004.iso / PCONLiNE / stdweb / ornekler / stil.php < prev   
Encoding:
PHP Script  |  2004-05-06  |  2.0 KB  |  96 lines

  1. <?
  2.  
  3. $agent = getenv("HTTP_USER_AGENT");
  4.  
  5. if (preg_match("/MSIE/i", "$agent")) {
  6.     $tarayici = "IE";
  7. } else if (preg_match("/Mozilla/i", "$agent")) {
  8.     $tarayici = "NS";
  9. }
  10.  
  11. ?>
  12.  
  13.  
  14. <html>
  15. <head>
  16.     <title></title>
  17.     <meta http-equiv="Content-Type" content="text/html; charset=windows-1254">
  18.     <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-9">
  19.     <? if ($tarayici == "IE" ){?>
  20.     <style type="text/css">
  21.         h2 {
  22.             color:#ff0000; 
  23.             font-family: Verdana; 
  24.             font-weight:bold; 
  25.             font-size:20px; 
  26.             text-decoration:none;
  27.         }
  28.         .tekst {
  29.             color:#000000; 
  30.             font-family: Verdana; 
  31.             font-weight:normal; 
  32.             font-size:12px; 
  33.             text-decoration:none;
  34.         }
  35.         a {
  36.             color:#ff0000; 
  37.             font-family: Verdana; 
  38.             font-weight:normal; 
  39.             font-size:12px; 
  40.             text-decoration:none;
  41.         }
  42.         a:hover {
  43.             color:#00ff00; 
  44.             font-family: Verdana; 
  45.             font-weight:normal; 
  46.             font-size:12px; 
  47.             text-decoration:none;
  48.         }
  49.     </style>
  50.     <?php } else if ($tarayici == "NS" ){?>
  51.     <style type="text/css">
  52.         h2 {
  53.             color:#0000ff; 
  54.             font-family: Times New Roman; 
  55.             font-weight:bold; 
  56.             font-size:25px; 
  57.             text-decoration:none;
  58.         }
  59.         .tekst {
  60.             color:#000000; 
  61.             font-family: Times New Roman; 
  62.             font-weight:normal; 
  63.             font-size:15px; 
  64.             text-decoration:none;
  65.         }
  66.         a {
  67.             color:#0000ff; 
  68.             font-family: Times New Roman; 
  69.             font-weight:normal; 
  70.             font-size:15px; 
  71.             text-decoration:none;
  72.         }
  73.         a:hover {
  74.             color:#00ff00; 
  75.             font-family: Times New Roman; 
  76.             font-weight:normal; 
  77.             font-size:15px; 
  78.             text-decoration:none;
  79.         }
  80.     </style>
  81.     <?php } ?>
  82. </head>
  83.  
  84.  
  85. <body bgcolor="#ffffff">
  86.  
  87.     <h2>Ba■l²k</h2>
  88.     
  89.     <span class="tekst">
  90.         Bu PHP sayfas² ÷nce ziyaretτinin kulland²≡² taray²c² modelini dedekte ediyor daha sonra <a href="http://www.microsoft.com">Internet Explorer</a>'sa farkl² <a href="http://www.mozilla.org">Netscape</a> ise farkl² CSS stilini kullan²yor.
  91.     
  92.     </span>
  93.  
  94. </body>
  95. </html>
  96.